71b3bdc869afde6befcd60a25dda2a0047b4f371,camel-core/src/main/java/org/apache/camel/model/ThreadType.java,ThreadType,createProcessor,#RouteContext#,97

Before Change


        thread.setExecutor(executor);
        thread.setCoreSize(coreSize);
        thread.setDaemon(daemon);
        thread.setKeepAliveTime(keepAliveTime);
        thread.setMaxSize(maxSize);
        thread.setName(name);
        thread.setPriority(priority);

After Change


        if (daemon != null) {
            thread.setDaemon(daemon);
        }
        if (keepAliveTime != null) {
            thread.setKeepAliveTime(keepAliveTime);
        }
        if (maxSize != null) {
            thread.setMaxSize(maxSize);